home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / DELPHI3.EXE / %MAINDIR% / Examples / Delphi3 / ISAPI CGI and TeeChart / readme.txt next >
Encoding:
Text File  |  1998-11-17  |  1.3 KB  |  38 lines

  1.  
  2. ISAPI Web application for Delphi 3 and 4
  3. =========================================
  4.  
  5. The included project is an example of
  6. a Delphi 3 and 4 Web Module application.
  7.  
  8. Web applications can be created with Delphi
  9. using "File --> New --> Web Module" wizard.
  10.  
  11. This example uses the ISAPI model, which is
  12. used by Microsoft IIS (Internet Information Server).
  13.  
  14. The example, when compiled, creates a DLL file.
  15. This DLL (TeeISAPI.DLL) should be copied to your
  16. "script" folder ( by default is c:\inetpub\scripts ).
  17.  
  18. To run the ISAPI dll, copy the included TeeISAPI.htm file
  19. to your www root folder and open it with your www browser:  
  20.  
  21. http://localhost/teeisapi.htm
  22.  
  23.  
  24. This htm page has an embedded form used to call the dll
  25. passing several parameters to create the resulting Chart image.
  26.  
  27. In this example, the Chart is exported to a TJPEGImage
  28. component (using Delphi JPEG.DCU unit), and then
  29. is saved to a temporary memory stream.
  30. The client receives the JPEG bytes directly, with no
  31. intermediary files or HTM code.
  32.  
  33. Another way is to save the JPEG image to a file on the server, 
  34. and then send back to the client an HTML page 
  35. containing a link to the saved file. ( <img src="/temp.jpg" )
  36.  
  37. -----------------------------------------------------------------
  38.